-
Notifications
You must be signed in to change notification settings - Fork 23
Adding Realtime ASR Client #120
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Conversation
|
||
// Set up usage message | ||
std::stringstream str_usage; | ||
str_usage << "Usage: riva_realtime_asr_client " << std::endl; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Don't need this I think.
gflags::ProgramUsage()
and --help
should already be handling showing help.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
added comments
|
||
// Initialize default session config | ||
sessionConfig_.language_code_ = "en-US"; | ||
sessionConfig_.model_name_ = "parakeet-1.1b-en-US-asr-streaming-silero-vad-asr-bls-ensemble"; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
remove hardcoding
@@ -0,0 +1,159 @@ | |||
/* |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
would good to rename this as realtime.cpp and RecognitionClient as RealtimeClient
No description provided.